IK Set Filters


IK Set Filters Min Filter, Mag Filter, Mip Filter

Description

This command will specify which filtering methods will be used. The filtering method controls on how new pixels should be calculated based on its 4 neighboring pixels.
A list of possible filters are:
Constant nameConstantDescription
D3DTEXF_NONE0No filtering is used.
D3DTEXF_POINT1The nearest pixel is used.
D3DTEXF_LINEAR2Linear interpolation is used.
D3DTEXF_ANISOTROPIC3Anisotropic filtering is used.
D3DTEXF_PYRAMIDALQUAD6Takes 4 samples and uses a tent filter.
D3DTEXF_GAUSSIANQUAD7Also uses 4 samples but uses a gaussian filter.

Parameters

Min FilterIntegerSets the minifying filter.
Mag FilterIntegerSets the magnifying filter.
Mip FilterIntegerSets the mip filter.


Index